home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 27 / PC Gamer IT CD 27.iso / MEDIA / STORE.DXR / Internal_9_Back Button.ls < prev    next >
Encoding:
Text File  |  1997-12-01  |  452 b   |  19 lines

  1. on mouseEnter me
  2.   cursor(280)
  3.   set the member of sprite the currentSpriteNum to "Back Button Glow"
  4.   set the text of member "rollover text" to "Click here to exit the Imagine Try Before You Buy Store."
  5. end
  6.  
  7. on mouseLeave me
  8.   cursor(-1)
  9.   set the member of sprite the currentSpriteNum to "Back Button"
  10.   set the text of member "rollover text" to EMPTY
  11. end
  12.  
  13. on mouseDown me
  14.   puppetSound(0)
  15.   puppetSound(1, 0)
  16.   puppetSound(2, 0)
  17.   go(1, "main")
  18. end
  19.